# This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.1496.1.2 -> 1.1496.1.3 # arch/ia64/kernel/vmlinux.lds.S 1.38 -> 1.39 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/12/04 jakub@redhat.com 1.1496.1.3 # [PATCH] ia64: fix typo in vmlinux.lds.S # # The security init section was incorrectly using PAGE_OFFSET instead of # LOAD_OFFSET. # -------------------------------------------- # diff -Nru a/arch/ia64/kernel/vmlinux.lds.S b/arch/ia64/kernel/vmlinux.lds.S --- a/arch/ia64/kernel/vmlinux.lds.S Sun Dec 14 00:40:24 2003 +++ b/arch/ia64/kernel/vmlinux.lds.S Sun Dec 14 00:40:24 2003 @@ -151,7 +151,7 @@ { *(.con_initcall.init) } __con_initcall_end = .; __security_initcall_start = .; - .security_initcall.init : AT(ADDR(.security_initcall.init) - PAGE_OFFSET) + .security_initcall.init : AT(ADDR(.security_initcall.init) - LOAD_OFFSET) { *(.security_initcall.init) } __security_initcall_end = .; . = ALIGN(PAGE_SIZE);